*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    /* height: 8000px; */
    font-family: Arial, Helvetica, sans-serif;
    
}
/* body::selection{
    background-color: red;
} */
title{
    text-transform: uppercase;
}
.line{
    width: 80px;
    height: 2.5px;
    background-color: darkred;
    margin: auto;
    margin-top: 12px;
}
/* header */
.header{
    width: 100%;
    height: 50px;
    background-color: rgba(239, 40, 40, 0.7 );
    position: relative;
    position: fixed;
    z-index: 30;
}
.header-img{
    margin-left: 25px;
}
.header-input{
    margin-top: -41px;
    margin-left: 67px;
}
.header-text{
    width: 220px;

}
.header-input input{
    border: 0;
    border-radius: 15px;
    padding-left: 30px;
    height: 25px;
    outline: 0;
    padding-top: 5px;
}
.header-input .header-logo{
    font-size: 15px;
    color: rgb(0, 0, 0);
    margin-left: -215px;
}
.header-list{
    float: right;
    margin-top: -23px;
    text-decoration: none;
    margin-right: 30PX;
}
.header-list li{
    display: inline-block;
    margin-right: 20px;
    font-size: 15px;
    position: relative;
    font-weight: bold;
    padding-bottom: 6px;
}
.header-list li a{
    text-decoration: none;
    color: #ffffff;
}
.header-list li::before{
    content: " ";
    position: absolute;
    width: 0;
    height: 0;
    background-color: #000000;
    bottom: 0;
}
.header-list li:hover::before{
    width: 100%;
    height: 3px;
    transition: 1s;
}
.Sports .dropdown {
    position: absolute;
    top: 40px;
    right: 0;
    left: 3px;
    width: 100px;
    height: 145px;
    background: #c6304c;
    border-radius: 10px;
    margin-top: -15px;   
    visibility: hidden;
    transition: 0.4;
}
.Sports-btn {
    background: none;
    border: none;
    color: #fefefe;
    cursor: pointer;
    font-size: 15px;
    font-weight: bold;
}
.dropdown p{
    margin-top: 20px;
    margin-left: 10px;
    padding-top: 3px;
    padding-bottom: 8px;
    color: rgb(255, 255, 255);
    cursor: pointer;
    position: relative;
    font-size: 13px;
}
.Sports:hover .dropdown{
    visibility: visible;
}
.dropdown p::before{
    content: " ";
    position: absolute;
    width: 0;
    height: 0;
    bottom: 0;
    background-color: #000000;
}
.dropdown p:hover::before{
    width:75%;
    height: 3px;
    transition: 1s;
}
/* Home*/
.big-sec2{
    width: 100%;
    height: 100vh;
}
.Home{
    background-image: url(../images/section1.jpg);
    width: 100%;
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
}
.Home-parent{
    width: 70%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    position: relative;
}
.Home-Overlay{
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.4);
}
.Home-title1{
    color: #ffffff;
    font-size: 50px;
    font-weight: bold;
    text-transform: uppercase;
}
.Home-p1{
    color: #afafaf;
    margin: 15px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.Home-btn{
    width: 130px;
    height: 40px;
    border: 0;
    outline: 0;
    border-radius: 15px;
    cursor: pointer;
    font-size: 17px;
    margin-right: 10px;
}
.Home-btn:hover{
    opacity: 0.5;
}
.Home-btn2{
    background-color: rgb(141, 26, 26);
}
/* section2 */
.section2-title{
    text-align: center;
    font-size: 30px;
    margin-top: 65px;
    font-weight: bold;
}

.container-sec2{
    width: 90%;
    margin: auto;
    margin-top: 70px;
}
.parent-sec2{
    overflow: auto;
}
.item-sec2{
    float: left;
    width: 300px;
    height: 190px;
    background-color: #ffffff;
    border: 1px solid red;
    border-radius: 10px;
    text-align: center;
    position: relative;
    z-index: 10;
    overflow: hidden;
}
.item1-sec2{
    margin-left: 120px;
    margin-right: 100px;
    text-align: center;
}
.item2-sec2{
    margin-right: 100px;
}
.item-logo1{
    padding-top: 15px;
    font-size: 22px;
    color: #ff0000;
}
.sec2-t{
    padding-top: 20px;
    z-index: 8;
}
.sec2-p{
    padding-top: 15px;
    opacity: 0.6;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    z-index: 5;
}
.sec2-btn{
    margin-top: 20px;
    border: 0;
    outline: 0;
    background: none;
    cursor: pointer;
    font-weight: bold;
    opacity: 0.9;
}
.item-sec2::after{
    content: " ";
    position: absolute;
    width: 0;
    height: 0;
    top: 0;
    left: 0;
    background-color: #e21212;
    opacity: 0.2;
    z-index: 1;
    border-radius: 10px     ;
}
.item-sec2:hover::after{
    width: 100%;
    height: 100%;
    transition: 1s;
    z-index: -3;
}
.item-sec2:hover .sec2-t{
    color: #ffffff;
    transition: 0.3s;
}
.item-sec2:hover .sec2-p{
    opacity: 1;
    transition: 0.3s;

}
.item-sec2 i{
    opacity: 0.7;
}
.item-sec2:hover i{
    opacity: 1;
    transition: 0.3;
}
.sec2-hover{
    width: 150px;
    height: 150px;
    background-color: #000000;
    margin-bottom: 250px;
    position: absolute;
}
/* section3 */
.background-sec3{
    background-color: rgba(218, 93, 93, 0.2);
    width: 100%;
    height: 120vh;

}
.section3-title{
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    text-transform: capitalize;
    padding-top: 45px;
}
.container-sec3{
    width: 75%;
    margin: 35px 0 0 280;

}
.parent-sec3{
    overflow: auto;
    position: relative;
}
.item-sec3-r1{
    float: left;
    position: relative;
    margin-right: 25px;
    text-align: center;

}
.item-sec3-r2{
    float: left;
    position: relative;
    margin-top: 27px;
    margin-right: 25px;
    text-align: center;
}
.item-sec3-r2 img{
    position: relative;
}
.sec3-btn{
    border: 0;
    outline: 0;
    width: 40px;
    height: 30px;
    font-size: 18px;
    color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    cursor: pointer;
}
.sec3-icons{
    top: 80%;
    left: 50%;
    transform: translate(-50%,-50%);
    position: absolute;
    visibility: hidden;
    transition: 0.2s;
}
.item-sec3:hover .sec3-icons{
    visibility: visible;
}
.sec3-t{
    top: 65;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 25px;
    opacity: 0.7;
    visibility: hidden;
    transition: 0.2s;
}
.item-sec3:hover .sec3-t{
    visibility: visible;
}
.sec3-p{
    top: 100;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    color: #ffffff;
    visibility: hidden;
    transition: 0.2s;
    font-weight: bold;
    font-size: 13px;
}
.item-sec3:hover .sec3-p{
    visibility: visible;
}
.sec3-overlay{
    background-color: rgba(0, 0, 0, 0.5);
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    position: absolute;
    visibility: hidden;
    transition: 0.2s;
}
.item-sec3:hover .sec3-overlay{
    visibility: visible;
}
/* section4 */
.section4-title{
    text-align: center;
    font-size: 30px;
    margin-top: 35px;
    font-weight: bold;
}
.big-sec4{
    width: 100%;
    height: 75vh;
}
.container-sec4{
    width: 75%;
    
    margin: 20px 0 0 150px;
}
.parent-sec4{
    overflow: auto;
    position: relative;
}
.item-sec4{
    width: 270px;
    height: 170px;
    border: 1px solid red;
    border-radius: 10px;
    float: left;
    position: relative;
    overflow: hidden;
}
.item-sec4 i{
    padding-top: 25px;
    padding-left: 10px;
    font-size: 25px;
    color: rgba(255, 0, 0, 0.6);
}
.item-sec4 h3{
    margin-left: 45px;
    margin-top: -28px;
    font-size: 27px;
    padding-right: 10px;
}
.item-sec4 p{
    margin-left: 45px;
    font-size: 13px;
    font-weight: bold;
    padding-right: 10px;
    opacity: 0.5;
    margin-top: 5px;
}
.item-sec4-r1{
    margin-left: 90px;
}
.item-sec4-r2{
    margin-left: 90px;
    margin-top: 40px;
}
.item3-sec4-r2{
    margin-top: 40px;
}
.item-sec4::after{
    content: " ";
    position: absolute;
    width: 0;
    height: 0;
    top: 0;
    left: 0;
    background-color: #e21212;
    opacity: 0.2;
    z-index: 1;
}
.item-sec4:hover::after{
    width: 100%;
    height: 100%;
    transition: 1s;
    z-index: -3;
    border-radius: 10px;
}
.item-sec4:hover h3{
    color: red;
    transition: 0.4s;
}
.item-sec4:hover p{
    opacity: 1;
    transition: 0.4s;
}
.item-sec4:hover i{
    color: rgb(255, 0, 0);
    transition: 0.4s;
}
/* section5 */
.container-sec5{
    width: 100%;
    height: 50vh;
}
.parent-sec5{
    overflow: auto;
    position: relative;
}
.info-sec5 div{
    text-align: left;
}
.line-sec5{
    width: 57px;
    height: 2.5px;
    background-color: darkred;
    margin-top: 10px;
    margin-left: 2px;
}
.info-sec5{
    float: left;
    padding-top: 50px;
    padding-left: 240px;
    text-align: left;
}
.info-sec5 h3{
    font-size: 35px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
.info-sec5 p{
    margin-top: 35px;
    font-size: 12px;
    font-weight: bold;
    opacity: 0.4;
}
.info-sec5 ul{
    margin-top: 25px;
    list-style: none;
    font-weight: bold;
    font-size: 13px;
}
.info-sec5 ul li{
    color: rgba(0, 0, 0,0.6);
    margin-top: 35px;
    margin-left: 8px;
}
.icons-info-sec5 {
    margin-top: 50px;
}
.icons-info-sec5 i{
    display: block;
    margin-left: -4px;
    margin-top: -63px;
    color: rgba(255, 0, 0, 0.7);
}
.photo-sec5{
    float: right;
    margin-right: 275px;
}
.icons-sec5{
    margin-left: 128px;
    margin-top: 8px;
    opacity: 0.8;
}
.icons-sec5 i{
    margin-right: 8px;
    font-size: 15px;
}
.f-icon-sec5{
    color: rgba(255, 0, 0, 0.6);
}
.icons-sec5 i:hover{
    color: rgba(255, 0, 0, 0.6);
}
/* section6 */
.section6{
    width: 100%;
    height: 90vh;
}
.big-sec6{
    position: relative;
    width: 100%;
    background-image: url(../images/sec6.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    height: 50vh;
    margin-top: 550px;
}
.container-sec6{
    width: 100%;
    height: 50%;
}
.parent-sec6{
    overflow: auto;
    position: relative;
}
.icon-sec6{
    margin-top: 150px;
    margin-left: 250px;
    float: left;
    text-align: center;
    color: #ffffff;
}
.icon-sec6 i{
    font-size: 30px;
    margin-bottom: 15px;
}
.icon-sec6 p{
    font-size: 22px;
}
.icon-sec6 h3{
    font-size: 12px;
}
.sec6-Overlay{
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.4);
}
/* section7 */
.big-sec7{
    width: 100%;
    height: 80vh;
    margin-top: 250px;
}
.section7-title{
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    text-transform: capitalize;
    padding-top: 45px;
}
.container-sec7{
    width: 90%;
    margin-left: 150px;
}
.parent-sec7{
    overflow: auto;
}
.item-sec7{
    float: left;
    width: 300px;
    height: 375px;
    margin: 50px 100px 0 28px;
    text-align: center;
    border: 1px solid red;
    border-radius: 7px;
    position: relative;
}
.circle-sec7{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 0, 0, 0.4);
    margin-left: 100px;
    margin-top: -10px;
    padding-top: 28px;
}

.font1-sec7{
    font-weight: bold;
    margin: 30px 0;
    font-size: 18px;
}
.font3-sec7{
    margin-top: 5px;
}
.font4-sec7{
    margin-top: 20px;
    font-weight: bold;
    font-size: 13px;
}
.item-sec7 button{
    margin-top: 50px;
    border: 1px solid red;
    border-radius: 10px;
    outline: 0;
    width: 170px;
    height: 25px;
    z-index: 6;
}
.item-sec7::before{
    content: " ";
    top: 0;
    height: 0;
    left: 0;
    position: absolute;
    background-color: #e21212;
    opacity: 0.2;
}
.item-sec7:hover::before{
    width: 100%;
    height: 100%;
    transition: 1.5s;
    z-index: -3;
}
.item-sec7:hover .circle-sec7{
    border: 1.5px solid red;
    transition: 1s;
}
.item-sec7:hover .font1-sec7{
    color: red;
    transition: 0.5s;
}
/* section8 */
.big-sec8{
    position: relative;
    width: 100%;
    background-image: url(../images/sec8.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    height: 50vh;
    margin-top: 130px;
}
.container-sec8{
    width: 100%;
    height: 50%;
}
.parent-sec8{
    overflow: auto;
    position: relative;
}
.sec8-Overlay{
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.4);
}
.info-sec8{
    float: left;
}
.img-sec8 img{
    height: 80;
    width: 80;
    border-radius: 50%;
    margin-left: 250px;
    margin-top: 100px;
}
.info-sec8 h3{
    color: #ffffff;
    margin-left: 340px;
    margin-top: -70px;
    font-weight: bold;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 25px;
}
.info-sec8 p{
    color: red;
    margin-left: 340px;
    margin-top: 15px;

}
.info-sec8 .p-sec8{
    color: #c5c5c5;
    margin-left: 250px;
    margin-top: 20px;
}
.info1-sec8{
    margin-left: 30px;
}
.info2-sec8{
    margin-left: -80;
}
.p-sec8 span{
    opacity: 0;
}
/* section9 */
.big-sec9{
    width: 100%;
    height: 80vh;
    margin-top: 100px;
}
.section9-title{
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    text-transform: capitalize;
}
.container-sec9{
    width: 80%;
    margin: auto;
    margin-top: 50px;
}
.parent-sec9{
    overflow: auto;
}
.item-sec9{
    float: left;
    width: 30%;
    padding: 18px 13px;
    text-align: center;
    background-color: #afafaf;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}
.item2-sec9{
    margin: 0px 5%;
}
.item-img9{
    width: 90%;
    margin: auto;
}
.item-img9 img{
    width: 100%;
}
.item-overlay9{
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.3);
    visibility: hidden;
}
.item-sec9:hover .item-overlay9{
    visibility: visible;
}
.item-overlay9{
    padding-top: 18px;
}
.item-overlay9  a{
    display: block;
    width: 40px;
    height: 40px;
    background-color: #cf0000;
    color: #ffff;
    font-size: 20px;
    margin-left: 295px;
    position: relative;
}
.item-overlay9  a i{
    line-height: 40px;
}
.item-info9-title{
    margin-top: 10px;
    font-size: 25px;
}
.item-info9-p{
    margin-top: 20px;
    font-size: 14px;
    font-weight: bold;
    opacity: 0.6;
}
.item-sec9:hover .item-info9-title{
    color: #ffffff;
    transition: 0.6s;
}
.item-sec9:hover .item-info9-p{
    color: #ff0000;
    transition: 0.6s;
}
.item-sec9::before{
    content: " ";
    top: 0;
    height: 0;
    left: 0;
    position: absolute;
    background-color: rgb(255, 0, 0);
    opacity: 0.3;
}
.item-sec9:hover::before{
    width: 100%;
    height: 100%;
    transition: 1s;
    z-index: 6;
    border-radius: 10px;
}
/* section10 */
.big-sec10{
    width: 100%;
    height: 80vh;
    margin-top: 150px;
}
.section10-title{
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    text-transform: capitalize;
    margin-top: 150PX;
}
.container-sec10{
    width: 100%;
    margin: auto;
}
.parent-sec10{
    overflow: auto;
}
.item-sec10{
    float: left;
    width: 370px;
    height: 570px;
    text-align: center;
    border: 1px solid red;
    border-radius: 10px;
    position: relative;
    margin-top: 40px;
    overflow: hidden;
}
.item1-sec10{
    margin-left: 150px;
}
.item2-sec10{
    margin-left: 50px;
}
.item3-sec10{
    margin-left: 50px;
}
.item-sec10 img{
    margin-top: 30px;
    border-radius: 15px;
}
.item-overlay10 i{
    margin-top: 15px;
    color: rgba(255, 0, 0);
}
.item-overlay10 span{
    margin-right: 15px;
}
.item-overlay10 h2{
    margin: 15px 0;
    font-size: 18px;
}
.item-overlay10 p{
    font-weight: bold;
    font-size: 13px;
    opacity: 0.7;
}
.item-overlay10 button{
    border: 0;
    outline: 0;
    color: rgba(255, 0, 0);
    background: 0;
    cursor: pointer;
    margin-top: 10px;
    font-weight: bold;
}
.item-sec10:hover h2{
    color: #ffffff;
    transition: 0.3s;
}
.item-sec10:hover p{
    color: rgba(255, 0, 0);
    transition: 0.7s;
    opacity: 1;
}
.item-sec10::after{
    content: " ";
    top: 0;
    height: 0;
    left: 0;
    position: absolute;
    background-color: rgb(255, 0, 0);
    opacity: 0.2;
}
.item-sec10:hover::after{
    width: 100%;
    height: 100%;
    transition: 1s;
    z-index: -5;
    border-radius: 10px;
}
/* footer */
.footer{
    margin-top: 200px;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 0, 0, 0.3);
    text-align: center;
}
.footer-content img{
    margin-top: 35px;
    border-radius: 15px;
}
.footer-icons{
    font-size: 30px;
    margin-top: 15px;
}
.footer-icons i{
    width: 50px;
    height: 50px;
    background-color: rgb(241, 92, 92);
    border-radius: 50%;
    padding-top: 10px;
    color: #ffffff;
}
.footer-content p{
    font-weight: bold;
    font-size: 9px;
    margin-top: 15px;
}
.footer-icons i:hover{
    background-color: red;
    transition: 0.7s;
}